home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / dist / libiberty / vfprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  184 b   |  13 lines

  1. #include <stdio.h>
  2. #include <varargs.h>
  3. #undef vfprintf
  4.  
  5. int
  6. vfprintf (file, format, ap)
  7.      FILE *file;
  8.      char *format;
  9.      va_list ap;
  10. {
  11.    return _doprnt (format, ap, file);
  12. }
  13.